-
Notifications
You must be signed in to change notification settings - Fork 672
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(gnss_poser): add autoware prefix to gnss_poser #8323
chore(gnss_poser): add autoware prefix to gnss_poser #8323
Conversation
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #8323 +/- ##
==========================================
- Coverage 24.11% 23.91% -0.20%
==========================================
Files 1399 1384 -15
Lines 102426 101527 -899
Branches 38920 38558 -362
==========================================
- Hits 24696 24285 -411
+ Misses 75252 74806 -446
+ Partials 2478 2436 -42
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@TaikiYamada4
Multiple PRs need to be merged simultaneously. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have confirmed that logging_simulator works well.
And I checked
-
Directory Name
- Add
autoware_
as a prefix to the directory name.
- Add
-
packages.xml
- Add
autoware_
to thename
element.
- Add
-
CMakeLists.txt
- Change the
project
name toautoware_***
. - Add
autoware::
toPLUGIN
. - (Optional) Stop using
${PROJECT_NAME}
.
- Change the
-
Header Files (.hpp)
- Start
#ifndef
guards withAUTOWARE__
. - Add
autoware::
tonamespace
. - Change the comment after
namespace
definition.
- Start
-
Source Files (.cpp)
- Add
autoware::
tonamespace
. - Change the comment after
namespace
definition. - Add
autoware::
insideRCLCPP_COMPONENTS_REGISTER_NODE
.
- Add
-
Launch Files
- Add
autoware_
beforefind-pkg-share
. - Change
node pkg="<pkgname>"
toautoware_<pkgname>
.
- Add
-
CODEOWNERS
- Add
autoware_
to the relevant package. - Arrange entries alphabetically within the same component.
- Add
-
Include
- Add
autoware
folder as necessary and update include statements accordingly. - Check for impacts on other packages.
- Add
-
Verification Points
- Search
find-pkg-share
in autoware - Check README file (especially json schema)
- Pay attention to complex cases like
sensor_launch
as seen ingnss_poser
- Search
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@TaikiYamada4 LGTM, thanks!
Sorry for my mistake on git operation, I will fix this soon. |
79adeff
to
a52640d
Compare
Signed-off-by: TaikiYamada4 <[email protected]>
Signed-off-by: TaikiYamada4 <[email protected]>
Signed-off-by: TaikiYamada4 <[email protected]>
Signed-off-by: TaikiYamada4 <[email protected]>
a52640d
to
049adf9
Compare
…ion#8323) * add "autoware" prefix to gnss_poser Signed-off-by: TaikiYamada4 <[email protected]> * Fixed typos and left overs Signed-off-by: TaikiYamada4 <[email protected]> * Fixed directory mistake Signed-off-by: TaikiYamada4 <[email protected]> * style(pre-commit): autofix * Removed gnss_poser line from CODEOWNERS Signed-off-by: TaikiYamada4 <[email protected]> --------- Signed-off-by: TaikiYamada4 <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Yi-Hsiang Fang (Vivid) <[email protected]>
…ion#8323) * add "autoware" prefix to gnss_poser Signed-off-by: TaikiYamada4 <[email protected]> * Fixed typos and left overs Signed-off-by: TaikiYamada4 <[email protected]> * Fixed directory mistake Signed-off-by: TaikiYamada4 <[email protected]> * style(pre-commit): autofix * Removed gnss_poser line from CODEOWNERS Signed-off-by: TaikiYamada4 <[email protected]> --------- Signed-off-by: TaikiYamada4 <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Yi-Hsiang Fang (Vivid) <[email protected]>
Description
Following the movement of adding
autoware_
prefix to package names, this PR adds autoware prefix to gnss_poser.Related links
Since this PR strongly relates to sensor launching systems, this PR must be merged together with the following PRs.
How was this PR tested?
Confirmed that gnss_poser launches and works as normal in the rosbag replay simulation.
Notes for reviewers
Since this PR strongly relates to sensor launching systems, this PR must be merged together with the following PRs.
Interface changes
None.
Effects on system behavior
None.